home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / patch / ps3b3.lha / Install-Help3.0b < prev    next >
Text File  |  1994-10-12  |  1KB  |  35 lines

  1. ;PAGESTREAM 3.0b HELP SYSTEM ONLINE UPDATE INSTALLATION SCRIPT
  2. ;COPYRIGHT ©1994 SOFT-LOGIK PUBLISHING CORPORATION
  3.  
  4. ;SEE IF PAGESTREAM3 AND SOFTLOGIK ARE ASSIGNED AND THE HELP DIRECTORY EXISTS
  5. (set PGSdest (getassign "PageStream3" "a"))
  6. (set SLdest (getassign "SoftLogik" "a"))
  7. (if (OR (= PGSdest "") (= SLdest ""))
  8.     (abort "PageStream3: and/or SoftLogik: are not assigned. You must properly install PageStream3 before applying this update patch.")
  9. )
  10. (set @default-dest PGSdest)
  11. (if (<> (exists "PageStream3:Help") 2)
  12.     (abort "The PageStream3:Help directory is missing. You must properly install the help system from your original PageStream3 disks before installing these help files.")
  13. )
  14.  
  15. (message "\nThis will replace outdated help files with new versions of the same files. Your original PageStream disks will not be modified.")
  16.  
  17. ;COPY THE LHEX PROGRAM TO RAM:
  18. (copyfiles
  19.     (source "PageStream3Disk1:lhex")
  20.     (dest "ram:")
  21.     (nogauge)
  22. )
  23.  
  24. ;UPDATE HELP
  25. (working "Installing Help Files...")
  26. (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Help x Help.lha")
  27. (delete "Help.LHA" (safe))
  28.  
  29. ;REMOVE THE LHARC PROGRAM
  30. (delete "ram:lhex" (safe))
  31. (delete "Install-Help3.0b.info" (safe))
  32.  
  33. ;GEE, THAT WAS FUN
  34. (exit "New help files installed!")
  35.